home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Programmer Disk
/
The Programmer Disk (Microforum).iso
/
xpro
/
c
/
pro19
/
clearerr.c
< prev
next >
Wrap
Text File
|
1987-10-04
|
256b
|
12 lines
#define NOCCARGC /* no arg count passing */
#include stdio.h
#include clib.def
extern int Ustatus[];
/*
** Clear error status for fd.
*/
clearerr(fd) int fd; {
if(Umode(fd)) Ustatus[fd] &= ~ERRBIT;
}